Move some docs inline.
authorMatthias Clasen <mclasen@redhat.com>
Mon, 1 Nov 2004 20:20:25 +0000 (20:20 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 1 Nov 2004 20:20:25 +0000 (20:20 +0000)
2004-11-01  Matthias Clasen  <mclasen@redhat.com>

* gtk/tmpl/gtkfilechooserbutton.sgml: Move some docs inline.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
docs/reference/ChangeLog
gtk/gtkfilechooserbutton.c

index ad822ec8e9333d9c118cadca9beef651ce12c858..5f7f55821b1a42b10dd41d86c92068af341d24a3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2004-11-01  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkfilechooserbutton.c: Move some docs inline.
+
        * gtk/gtkaboutdialog.c (gtk_show_about_dialog): Doc update.
 
        * gtk/gtktextbuffer.c (gtk_text_buffer_backspace): Revalidate the
index ad822ec8e9333d9c118cadca9beef651ce12c858..5f7f55821b1a42b10dd41d86c92068af341d24a3 100644 (file)
@@ -1,5 +1,7 @@
 2004-11-01  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkfilechooserbutton.c: Move some docs inline.
+
        * gtk/gtkaboutdialog.c (gtk_show_about_dialog): Doc update.
 
        * gtk/gtktextbuffer.c (gtk_text_buffer_backspace): Revalidate the
index ad822ec8e9333d9c118cadca9beef651ce12c858..5f7f55821b1a42b10dd41d86c92068af341d24a3 100644 (file)
@@ -1,5 +1,7 @@
 2004-11-01  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkfilechooserbutton.c: Move some docs inline.
+
        * gtk/gtkaboutdialog.c (gtk_show_about_dialog): Doc update.
 
        * gtk/gtktextbuffer.c (gtk_text_buffer_backspace): Revalidate the
index ad822ec8e9333d9c118cadca9beef651ce12c858..5f7f55821b1a42b10dd41d86c92068af341d24a3 100644 (file)
@@ -1,5 +1,7 @@
 2004-11-01  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkfilechooserbutton.c: Move some docs inline.
+
        * gtk/gtkaboutdialog.c (gtk_show_about_dialog): Doc update.
 
        * gtk/gtktextbuffer.c (gtk_text_buffer_backspace): Revalidate the
index e33cc17e5aba37494d93ad0e78e26b868f0cf4a8..f7c0f334551137d55eae19ca314f826638bd67b7 100644 (file)
@@ -1,5 +1,7 @@
 2004-11-01  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/tmpl/gtkfilechooserbutton.sgml: Move some docs inline.
+
        * gtk/tmpl/gtkaboutdialog.sgml: Small update.
 
        * gdk-pixbuf/tmpl/initialization_versions.sgml: Document
index 8e3a615baa5ae45f9b43c2fb9bc2b5dd45789e54..a31ad6071fde937eb50b6e38d542a2bb4027dfb4 100644 (file)
@@ -239,6 +239,13 @@ gtk_file_chooser_button_class_init (GtkFileChooserButtonClass * class)
   widget_class->screen_changed = gtk_file_chooser_button_screen_changed;
   widget_class->mnemonic_activate = gtk_file_chooser_button_mnemonic_activate;
 
+  /**
+   * GtkFileChooserButton:dialog:
+   * 
+   * Instance of the #GtkFileChooserDialog associated with the button.
+   *
+   * Since: 2.6
+   */
   g_object_class_install_property (gobject_class, PROP_DIALOG,
                                   g_param_spec_object ("dialog",
                                                        P_("Dialog"),
@@ -246,17 +253,43 @@ gtk_file_chooser_button_class_init (GtkFileChooserButtonClass * class)
                                                        GTK_TYPE_FILE_CHOOSER_DIALOG,
                                                        (G_PARAM_WRITABLE |
                                                         G_PARAM_CONSTRUCT_ONLY)));
+
+  /**
+   * GtkFileChooserButton:title:
+   * 
+   * Title to put on the #GtkFileChooserDialog associated with the button.
+   *
+   * Since: 2.6
+   */
   g_object_class_install_property (gobject_class, PROP_TITLE,
                                   g_param_spec_string ("title",
                                                        P_("Title"),
                                                        P_("The title of the file chooser dialog."),
                                                        _("Select a File"),
                                                        G_PARAM_READWRITE));
+
+  /**
+   * GtkFileChooserButton:active:
+   * 
+   * %TRUE, if the #GtkFileChooserDialog associated with the button has been
+   * made visible.  This can also be set by the application, though it is
+   * rarely useful to do so.
+   *
+   * Since: 2.6
+   */
   g_object_class_install_property (gobject_class, PROP_ACTIVE,
                                   g_param_spec_boolean ("active",
                                                         P_("Active"),
                                                         P_("Whether the browse dialog is visible or not."),
                                                         FALSE, G_PARAM_READWRITE));
+
+  /**
+   * GtkFileChooserButton:
+   * 
+   * The width of the entry and label inside the button, in characters.
+   *
+   * Since: 2.6
+   */
   g_object_class_install_property (gobject_class, PROP_WIDTH_CHARS,
                                   g_param_spec_int ("width-chars",
                                                     P_("Width In Characters"),